home *** CD-ROM | disk | FTP | other *** search
/ Champak 52 / Volume 52 - JOGO DISK .iso / Games / shopdrop.swf / scripts / __Packages / MallMenu.as < prev    next >
Text File  |  2007-09-27  |  334b  |  18 lines

  1. class MallMenu extends smashing.Menu
  2. {
  3.    function MallMenu()
  4.    {
  5.       super();
  6.    }
  7.    function onShow()
  8.    {
  9.       _global.mcRoot.oBase.pause();
  10.       this._parent.buildingsLeft.stopBuild();
  11.       this._parent.buildingsRight.stopBuild();
  12.    }
  13.    function onResume()
  14.    {
  15.       _global.mcRoot.oBase.play();
  16.    }
  17. }
  18.